home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Visual Database / Visual BASIC 5.0 (Ent. Edition) / Vb5ent Extractor.EXE / VB / SAMPLES / ENTRPRIS / HELLO / HELO_SVR.CLS < prev    next >
Encoding:
Visual Basic class definition  |  1996-11-23  |  392 b   |  18 lines

  1. VERSION 1.0 CLASS
  2. BEGIN
  3.   MultiUse = -1  'True
  4. END
  5. Attribute VB_Name = "HelloClass"
  6. Attribute VB_GlobalNameSpace = False
  7. Attribute VB_Creatable = True
  8. Attribute VB_PredeclaredId = False
  9. Attribute VB_Exposed = True
  10.  
  11. Public Function SayHello() As String
  12.     SayHello = "Hello Microsoft Visual Basic Users!"
  13. End Function
  14.  
  15. Private Sub Class_Terminate()
  16.   Unload frmHello
  17. End Sub
  18.